home *** CD-ROM | disk | FTP | other *** search
/ Graduation from F.U. / Graduation from F.U..iso / macproj / macproj.DXR / 00001.ls next >
Encoding:
Text File  |  1995-02-17  |  1.4 KB  |  70 lines

  1. global Dur1, Dur2, Dur3, Dur4, MoovSprite
  2.  
  3. on startMovie
  4.   set the soundLevel to 7
  5.   set OnOrOff to 0
  6.   set Dur1 to the duration of cast "FRAT1.MOV"
  7.   set Dur2 to the duration of cast "FRAT2.MOV"
  8.   set Dur3 to the duration of cast "FRAT3.MOV"
  9.   set Dur4 to the duration of cast "FRAT4.MOV"
  10.   set MoovSprite to 20
  11. end
  12.  
  13. on AllPuppetsOff
  14.   repeat with channel = 1 to 48
  15.     puppetSprite(channel, 0)
  16.   end repeat
  17. end
  18.  
  19. on m1end
  20.   if (the movieRate of sprite MoovSprite = 0) and (the movieTime of sprite MoovSprite = Dur1) then
  21.     go("m2")
  22.   else
  23.     nothing()
  24.   end if
  25. end
  26.  
  27. on m2end
  28.   if (the movieRate of sprite MoovSprite = 0) and (the movieTime of sprite MoovSprite = Dur2) then
  29.     go("m3")
  30.   else
  31.     nothing()
  32.   end if
  33. end
  34.  
  35. on m3end
  36.   if (the movieRate of sprite MoovSprite = 0) and (the movieTime of sprite MoovSprite = Dur3) then
  37.     go("m4")
  38.   else
  39.     nothing()
  40.   end if
  41. end
  42.  
  43. on m4end
  44.   if (the movieRate of sprite MoovSprite = 0) and (the movieTime of sprite MoovSprite = Dur4) then
  45.     go("m1")
  46.   else
  47.     nothing()
  48.   end if
  49. end
  50.  
  51. on OpenTheMovie
  52.   global MoovCastName
  53.   if the visible of sprite 15 = 1 then
  54.     updateStage()
  55.     set the controller of cast MoovCastName to 0
  56.     set the movieRate of sprite 20 to 1
  57.   else
  58.     if the movieRate of sprite 20 = 0 then
  59.       nothing()
  60.     else
  61.       set the controller of cast MoovCastName to 1
  62.       set the movieRate of sprite 20 to 1
  63.     end if
  64.   end if
  65. end
  66.  
  67. on CloseTheMovie
  68.   nothing()
  69. end
  70.